home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 17 / AMIGAplus Sonderheft 17 (1999)(ICP)(DE)[!].iso / Rexx / wierdtext.rexx < prev    next >
OS/2 REXX Batch file  |  1998-06-05  |  358b  |  23 lines

  1. /* */
  2.  
  3. if ~show('p','rexxsupport.library') then call addlib('rexxsupport.library',0,-30,0)
  4.  
  5. address 'EvenMore.1'
  6. options results
  7.  
  8. "GETFULLPATH"
  9. filename = RESULT
  10. "GETFILENAME"
  11. name = RESULT
  12.  
  13. /* Command can be JIVE, LAMER, CRAZYTEXT, CHEF, etc
  14. */ Get these off aminet
  15.  
  16. address command 'C:jive <'filename' >RAM:'name
  17.  
  18. "LOAD Ram:"name
  19.  
  20. delete('Ram:'name)
  21.  
  22. exit
  23.